home *** CD-ROM | disk | FTP | other *** search
- /* Box arexx test */
-
- options results
- parse ARG Port x1 y1 x2 y2 b
- ADDRESS value Port
-
- pp_GetDepth
- D=result
- IF D<24 then DO
- pp_Warn 'This*script*is*only|for*24bits*Picture.'
- pp_PermitRefresh
- Exit
- END
-
- pp_UpdateUndoBox x1-1 y1-1 x2+1 y2+1
-
- pp_ComposeReqOff
-
- pp_EffectOn
-
- pp_PointCellular 10 3
- pp_BoxF x1 y1 x2 y2
- pp_Displace 2
- pp_BoxF x1 y1 x2 y2
- pp_Maximum 2
- pp_BoxF x1 y1 x2 y2
-
- pp_EffectOff
- pp_ComposeReqOn
-
- Exit
-